/* =========================
   Navbar Link Styles
   ========================= */
* {
  box-sizing: border-box;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

li {
  background-color: darkslateblue;
  margin: 1em;
  width: 120px;
  text-align: center;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

li a {
  padding: 0.5em 1em;
  text-decoration: none;
  color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  outline: none;
  transition: background 0.2s, color 0.2s, outline 0.2s;
}

a:hover,
a:focus {
  background: gold;
  color: #222;
  outline: 2px solid #222;
  outline-offset: 2px;
}

/* =========================
   Responsive Design
   ========================= */
@media (max-width: 600px) {
  li {
    width: 90%;
    margin: 0.5em auto;
  }
  li a {
    font-size: 1.1em;
    padding: 0.75em 0.5em;
  }
}

/* =========================
   (Optional) Default Page Styles
   ========================= */
/*
body {
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  padding-bottom: 5em;
}
h1, h2, h3, h4, h5, h6 {
  margin: 1.5em 0 1em;
}
ol li, ul li {
  padding-bottom: 0.5em;
}
p {
  line-height: 1.3em;
  margin-top: 0;
}
.button {
  background-color: #eb3b5a;
  padding: 0.5rem 1rem;
  border: 1px solid #eb3b5a;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin: 1em 0 5rem;
}
.button:hover {
  color: #eb3b5a;
  background-color: white;
}
*/